home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / eMuleWebServer_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  67 lines

  1. #
  2. # This script only checks if port 4711 is open and if it reports banner which contains string "eMule".
  3. # Usually this port is used for Web Server by eMule client and eMulePlus (P2P software).
  4. # This script has been tested on eMule 0.30e; 0.42 c,d,e,g; eMulePlus v.1 i,j,k.
  5. #
  6.  
  7. if(description)
  8. {
  9.   script_id(12233);
  10.   script_bugtraq_id(10039);
  11.   script_version ("$Revision: 1.2 $");
  12.  
  13.   script_name(english:"eMule Plus Web Server detection");
  14.  
  15.   desc["english"] = "
  16. eMule Web Server works on this port. Some versions of this P2P client 
  17. are vulnerable to a DecodeBase16 buffer overflow which would allow an 
  18. attacker to execute arbitrary code.
  19.  
  20. Thanks to Kostya Kortchinsky for his posting to bugtraq.
  21.  
  22. Known Vulnerable clients:
  23. eMule 0.42a-d
  24. eMule 0.30e
  25. eMulePlus <1k
  26.  
  27. See also : http://security.nnov.ru/search/news.asp?binid=3572
  28.  
  29. * Note: This script only checks if port 4711 is open and if 
  30. it reports banner which contains string eMule. *
  31.  
  32. Solution: disable eMule Web Server or upgrade to a bug-fixed version 
  33. (eMule 0.42e, eMulePlus 1k or later)
  34.  
  35. Risk factor : High";
  36.  
  37.   script_description(english:desc["english"]);
  38.  
  39.   summary["english"] = "Detect eMule Web Server";
  40.   script_summary(english:summary["english"]);
  41.  
  42.   script_category(ACT_GATHER_INFO);
  43.   script_copyright(english:"This script is Copyright (C) 2004 A.Kaverin"); 
  44.   family["english"] = "Peer-To-Peer File Sharing";
  45.   script_family(english:family["english"]);
  46.   script_dependencies("find_service.nes");
  47.   script_require_ports(4711);
  48.   exit(0);
  49. }
  50.  
  51.  
  52. include("http_func.inc"); 
  53.  
  54. port = 4711;
  55.  
  56. if(! get_port_state(port)) exit(0);
  57. banner = get_http_banner(port);
  58. if ( banner && "eMule" >< banner )
  59.   {
  60.   security_warning(port);
  61.   }
  62.  
  63. exit(0);
  64.  
  65.  
  66.   
  67.